Conversation
|
We found a Contributor License Agreement for you (the sender of this pull request) and all commit authors, but as best as we can tell these commits were authored by someone else. If that's the case, please add them to this pull request and have them confirm that they're okay with these commits being contributed to Google. If we're mistaken and you did author these commits, just reply here to confirm. |
|
|
||
|
|
||
| def run_server(host='0.0.0.0'): | ||
| app.run(threaded=False, use_reloader=False, host=host) |
There was a problem hiding this comment.
debug=False here, please. We shouldn't be using Flask's dev server to serve public traffic at all, but at least disable the debug flag.
There was a problem hiding this comment.
Yeah. I know . The setup gets increasingly more complex if I try to do the right thing with a real web server. Jerjou and I discussed possibly removing the server component altogether as the chat interactions are more interesting anyway. Will refine tomorrow. Thanks for all the help!
|
Whoops. My push errored out without my noticing, so I merged before adding |
@mogar1980 fixed some style issues, and cleaned some stuff up. PTAL